iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 13
0

一.建立JSON檔案
https://ithelp.ithome.com.tw/upload/images/20190928/2012102596IwbeDPOi.png
二.實際操作json檔案
1.讀取檔案

import json
with open("test.json",mode="r") as file:
    data=json.load(file) #data會是一個dict
print(data) 
print("name: ",data["name"])
print("version: ",data["version"])

2.改寫檔案

import json
with open("test.json",mode="r") as file:
    data=json.load(file)
print(data)
data["name"] = "new name" 
with open("test.json",mode="w") as file:
    json.dump(data,file)

https://ithelp.ithome.com.tw/upload/images/20190928/20121025BUR1eOgop9.png


上一篇
操作文字檔案
下一篇
亂數與統計模組(一)
系列文
邊緣學渣的python自學日記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言